/* CSS is how you can add style to your website, such as colors, fonts, and positioning of your
   HTML content. To learn how to do something, just try searching Google for questions like
   "how to change link color." */



@font-face {
  font-family: dffont;
  src: url("dffont.ttf");
}


header {
  border: solid transparent;
  border-width: 15px 15px;
  border-image:url("border.png") 15 round;
  border-image-outset: 8px;
  margin: 1.5em auto;
  font-family: dffont;
  font-size: 32px;
  padding: 5px;
  background-color: rgb(37, 32, 51);

}

div {
    display: block;
    font-family: dffont;
    font-size: 16px;
    unicode-bidi: isolate;
    background-color: rgb(37, 32, 51);
}

.full {
  border: solid transparent;
  border-width: 15px 15px;
  border-image:url("border.png") 15 round;
  border-image-outset: 8px;
  margin: 1.5em auto;
  padding: 5px;
  background-color: rgb(37, 32, 51);
}

.coll,
.half {
	display: flex;
	align-items: stretch;
	justify-content: space-between;
	border: 0;
	padding: 0;
}
.left,
.right,
.half {
  border: solid transparent;
  border-width: 15px 15px;
  border-image:url("borderim.png") 15 round;
  border-image-outset: 8px;
	padding: inherit;
	padding: 0.5em;
}
.left {
	flex-basis: 20%;
	  text-align:left;
}
.right {
	flex-basis: 70%;
	text-align:left;
}
.half {
	flex-basis: 50%;
}


main {
  font-family: dffont;
  border: solid transparent;
  border-width: 15px 15px;
  border-image:url("borderim.png") 15 round;
  border-image-outset: 8px;
  margin: 1.5em auto;
  padding: 5px;
  background-color: rgb(37, 32, 51)


}






body {
	margin: 2em auto;  
  background-color: white;
  color: black;
  background-image:url("hhhhh3.png");
  font-family: dffont;
  font-size: 16px;
  text-align:left;
  max-width: 10in;

